home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / cdivide.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  621 b   |  25 lines

  1. .TH CDIVIDE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. CDIVIDE
  5.  
  6.  
  7.  
  8.  ListType CDIVIDE( CurveType Curve, NumericType Param )
  9.  
  10. Subdivides a curve into two sub-curves at the specified parameter value.
  11. Curve can be either a Bspline curve in which Param must be
  12. within the Curve's parametric domain, or a Bezier curve in which Param
  13. must be in the range of zero to one.
  14.  
  15. It returns a list of the two sub-curves. The individual curves may be
  16. extracted from the list using the NTH command.
  17.  
  18. Example:
  19.  
  20.  CrvLst = CDIVIDE( Crv, 1.3 );
  21.  Crv1 = nth( CrvLst, 1 );
  22.  Crv2 = nth( CrvLst, 2 );
  23.  
  24. subdivides the curve Crv at the parameter value of 0.5.
  25.